home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / GCC 1.37.1r14 / usr / lib / mac / isatty.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-08  |  126 b   |  9 lines  |  [TEXT/JRRK]

  1. #include <fcntl.h>
  2. #include "crtlocal.h"
  3.  
  4. int isatty(int fd)
  5.     {
  6.     mysleep(1);
  7.     return (crt_fd_tab[fd].flags & O_PIPE) != 0;
  8.     }
  9.